home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PLayAdjOpts.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  719b  |  38 lines

  1. /*
  2.  *--- PLayAdjOpts.h ----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PLayAdjOpts__
  10. #define __PLayAdjOpts__
  11.  
  12.  
  13. #include "PMCommands.h"
  14. #include "PMTypes.h"
  15.  
  16. class PLayAdjOpts
  17. {
  18.  
  19. public:
  20.  
  21.     PLayAdjOpts(
  22.                 long        mSnapToZone,
  23.                 PMBool        bResizeOK,
  24.                 PMBool        bIgnoreLocks,
  25.                 PMBool        bIgnoreGuides,
  26.                 PMBool        bMoveGuides,
  27.                 PMBool        bKeepGuidesAligned
  28.                     );
  29.  
  30. private:
  31.  
  32.     PLayAdjOpts();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PLayAdjOpts.h
  38.